home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / Centri / Centri.dir / 00190_Script_Squiggle39 < prev    next >
Text File  |  1999-02-25  |  802b  |  28 lines

  1. on enterFrame me
  2.   
  3.   
  4.   if the loch of sprite the spriteNum of me < 80 then
  5.     set the loch of sprite the spriteNum of me = the loch of sprite the spriteNum of me + 10
  6.   else if the loch of sprite the spriteNum of me > 10 then
  7.     set the loch of sprite the spriteNum of me = the loch of sprite the spriteNum of me - 10
  8.   end if
  9.   
  10. end
  11.  
  12. on mouseWithin me
  13.   set the loch of sprite the spriteNum of me = the mouseh
  14.   set the locv of sprite the spriteNum of me = the mousev
  15.   set the memberNum of sprite the spriteNum of me = 236
  16.   set the height of sprite the spriteNum of me = 80
  17.   
  18. end
  19.  
  20. on mouseLeave me
  21.   set the memberNum of sprite the spriteNum of me = 235
  22.   set the height of sprite the spriteNum of me = 15
  23.   
  24.   set the cursor of sprite the spriteNum of me = -1
  25. end
  26.  
  27.  
  28.